home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmInstruction
- Caption = "I n s t r u c t i o n s"
- ClientHeight = 4995
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7365
- Height = 5400
- Left = 1035
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4995
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Begin TextBox txtInstruction
- Enabled = 0 'False
- Height = 3975
- Left = 240
- MultiLine = -1 'True
- TabIndex = 1
- Top = 360
- Width = 6855
- End
- Begin CommandButton cmdOK
- Caption = "&OK"
- Default = -1 'True
- Height = 495
- Left = 3000
- TabIndex = 0
- Top = 4440
- Width = 1215
- End
- Option Explicit
- Sub cmdOK_Click ()
- frmInstruction.Hide
- End Sub
- Sub Form_Load ()
- Dim Instruction
- Instruction = "Instructions:"
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "Click the Deal button to change the back of the cards."
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "Double-click a card to see its face."
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "Click a card to hide its face."
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "Click the Deal button to deal a game."
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "TO BE A WINNER:"
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "Double-click between the Deal and the Back Card buttons and"
- Instruction = Instruction + Chr$(13) + Chr$(10)
- Instruction = Instruction + "then click the Deal button"
- Instruction = Instruction + Chr$(13) + Chr$(10)
- txtInstruction.Text = Instruction
- End Sub
-